Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@react-hookz/web
Advanced tools
@react-hookz/web is a collection of React hooks designed to simplify common web development tasks. It provides a wide range of hooks for state management, side effects, DOM interactions, and more, making it easier to build complex web applications with React.
State Management
The useToggle hook provides a simple way to manage boolean state. It returns the current state and a function to toggle the state.
import { useToggle } from '@react-hookz/web';
function ToggleComponent() {
const [value, toggle] = useToggle();
return (
<div>
<p>{value ? 'ON' : 'OFF'}</p>
<button onClick={toggle}>Toggle</button>
</div>
);
}
Side Effects
The useDebounce hook delays the update of a value until after a specified delay. This is useful for scenarios like search input where you want to wait for the user to stop typing before performing an action.
import { useDebounce } from '@react-hookz/web';
function SearchComponent() {
const [query, setQuery] = useState('');
const debouncedQuery = useDebounce(query, 500);
useEffect(() => {
if (debouncedQuery) {
// Perform search
}
}, [debouncedQuery]);
return (
<input
type="text"
value={query}
onChange={(e) => setQuery(e.target.value)}
/>
);
}
DOM Interactions
The useEventListener hook allows you to easily add and clean up event listeners. In this example, a click event listener is added to the window object.
import { useEventListener } from '@react-hookz/web';
function ClickLogger() {
useEventListener(window, 'click', () => {
console.log('Window clicked');
});
return <div>Click anywhere to log a message</div>;
}
react-use is a collection of essential React hooks. It offers a wide range of hooks for state management, side effects, lifecycle events, and more. Compared to @react-hookz/web, react-use has a larger community and more extensive documentation.
ahooks is a React hooks library that provides a set of high-quality and reliable hooks. It focuses on performance and ease of use. ahooks offers similar functionalities to @react-hookz/web but also includes some unique hooks for advanced use cases.
usehooks-ts is a collection of React hooks written in TypeScript. It provides type-safe hooks for common tasks in React applications. Compared to @react-hookz/web, usehooks-ts is more focused on TypeScript users and offers type safety out of the box.
@react-hookz/web
is a library of general-purpose React hooks built with care and SSR compatibility
in mind.
This one is pretty simple, everyone knows what to do:
npm i @react-hookz/web
# or
yarn add @react-hookz/web
As hooks was introduced to the world in React 16.8, @react-hookz/web
requires - you guessed it -
react
and react-dom
16.8+.
Also, as React does not support IE, @react-hookz/web
don't either.
This package distributed with ESNext language level and ES modules system. It means that depending on your browser target you might need to transpile it. Every major bundler provides a way to transpile
node_modules
fully or partially. Address your bundler documentation for more details.
You can import hooks two ways:
// from the root of package
import { useMountEffect } from '@react-hookz/web';
// or single hook directly
import { useMountEffect } from '@react-hookz/web/useMountEffect/index.js';
In case your bundler supports tree-shaking (most of modern does) - both variants are equal and only necessary code will get into your bundle. Direct hook imports should be considered otherwise.
@react-hookz/web
was built as a spiritual successor
of react-use
by one of its former maintainers.
Coming from react-use
? Check out our
migration guide.
useDebouncedCallback
— Makes passed function debounced, otherwise acts like useCallback
.useRafCallback
— Makes passed function to be called within next animation frame.useThrottledCallback
— Makes passed function throttled, otherwise acts like useCallback
.useConditionalEffect
— Like useEffect
but callback invoked only if given conditions match a given predicate.useCustomCompareEffect
— Like useEffect
but uses a provided comparator function to validate dependency changes.useDebouncedEffect
— Like useEffect
, but passed function is debounced.useDeepCompareEffect
— Like useEffect
but uses @react-hookz/deep-equal
comparator function to validate deep
dependency changes.useFirstMountState
— Returns a boolean that is true
only on first render.useIntervalEffect
— Like setInterval
but in the form of a React hook.useIsMounted
— Returns a function that yields current mount state.useIsomorphicLayoutEffect
— Like useLayoutEffect
but falls back to useEffect
during SSR.useMountEffect
— Run an effect only when a component mounts.useRafEffect
— Like useEffect
, but the effect is only run within an animation frame.useRerender
— Returns a callback that re-renders the component.useThrottledEffect
— Like useEffect
, but the passed function is throttled.useTimeoutEffect
— Like setTimeout
, but in the form of a React hook.useUnmountEffect
— Run an effect only when a component unmounts.useUpdateEffect
— An effect hook that ignores the first render (not invoked on mount).useLifecycleLogger
— This hook provides logging when the component mounts, updates and unmounts.useControlledRerenderState
— Like useState
, but its state setter accepts an extra argument, that allows cancelling
renders.useCounter
— Tracks a numeric value and offers functions for manipulating it.useDebouncedState
— Like useState
but its state setter is debounced.useFunctionalState
— Like useState
but instead of raw state, a state getter function is returned.useList
— Tracks a list and offers functions for manipulating it.useMap
— Tracks the
state of a Map
.useMediatedState
— Like useState
, but every value set is passed through a mediator function.usePrevious
—
Returns the value passed to the hook on previous render.usePreviousDistinct
—
Returns the most recent distinct value passed to the hook on previous renders.useQueue
—
A state hook implementing FIFO queue.useRafState
—
Like React.useState
, but state is only updated within animation frame.useRenderCount
—
Tracks component's render count including first render.useSet
— Tracks the
state of a Set
.useToggle
— Like
useState
, but can only be true
or false
.useThrottledState
— Like useState
but its state setter is throttled.useValidator
— Performs validation when any of the provided dependencies change.useNetworkState
— Tracks the state of the browser's network connection.useVibrate
— Provides vibration feedback using the Vibration API.usePermission
— Tracks the state of a permission.useSyncedRef
— Like useRef
, but it returns an immutable ref that contains the actual value.useCustomCompareMemo
— Like useMemo
but uses provided comparator function to validate dependency changes.useDeepCompareMemo
— Like useMemo
but uses @react-hookz/deep-equal
comparator function to validate deep
dependency changes.useHookableRef
— Like useRef
but it is possible to define handlers for getting and setting the value.useAsync
—
Executes provided async function and tracks its results and errors.useAsyncAbortable
— Like useAsync
, but also provides AbortSignal
as first function argument to the async function.useCookieValue
— Manages a single cookie.useLocalStorageValue
— Manages a single LocalStorage key.useSessionStorageValue
— Manages a single SessionStorage key.useIntersectionObserver
— Observe changes in the intersection of a target element with an ancestor element or with the
viewport.useMeasure
—
Uses ResizeObserver
to track an element's dimensions and to re-render the component when they change.useMediaQuery
— Tracks the state of a CSS media query.useResizeObserver
— Invokes a callback whenever ResizeObserver
detects a change to the target's size.useScreenOrientation
— Checks if the screen is in portrait
or landscape
orientation and automatically re-renders on
orientation change.useDocumentVisibility
— Tracks document visibility state.useClickOutside
— Triggers a callback when the user clicks outside a target element.useEventListener
— Subscribes an event listener to a target element.useKeyboardEvent
— Invokes a callback when a keyboard event occurs on the chosen target.useWindowSize
— Tracks the inner dimensions of the browser window.FAQs
React hooks done right, for browser and SSR.
We found that @react-hookz/web demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.